home *** CD-ROM | disk | FTP | other *** search
/ Aminet 48 / Aminet 48 (2002)(GTI - Schatztruhe)[!][Apr 2002].iso / Aminet / text / edit / vim60src.lha / Vim / vim60 / src / proto / mark.pro < prev    next >
Encoding:
Text File  |  2001-09-26  |  1.0 KB  |  24 lines

  1. /* mark.c */
  2. int setmark __ARGS((int c));
  3. void setpcmark __ARGS((void));
  4. void checkpcmark __ARGS((void));
  5. pos_T *movemark __ARGS((int count));
  6. pos_T *getmark __ARGS((int c, int changefile));
  7. pos_T *getnextmark __ARGS((pos_T *startpos, int dir, int begin_line));
  8. void fmarks_check_names __ARGS((buf_T *buf));
  9. int check_mark __ARGS((pos_T *pos));
  10. void clrallmarks __ARGS((buf_T *buf));
  11. char_u *fm_getname __ARGS((fmark_T *fmark, int lead_len));
  12. void do_marks __ARGS((exarg_T *eap));
  13. void ex_jumps __ARGS((exarg_T *eap));
  14. void mark_adjust __ARGS((linenr_T line1, linenr_T line2, long amount, long amount_after));
  15. void copy_jumplist __ARGS((win_T *from, win_T *to));
  16. void free_jumplist __ARGS((win_T *wp));
  17. void set_last_cursor __ARGS((win_T *win));
  18. int read_viminfo_filemark __ARGS((vir_T *virp, int force));
  19. void write_viminfo_filemarks __ARGS((FILE *fp));
  20. int removable __ARGS((char_u *name));
  21. int write_viminfo_marks __ARGS((FILE *fp_out));
  22. void copy_viminfo_marks __ARGS((vir_T *virp, FILE *fp_out, int count, int eof));
  23. /* vim: set ft=c : */
  24.